home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / vbcc / machines / amigappc / libsrc / stdlib / system.c < prev   
Encoding:
C/C++ Source or Header  |  1997-12-30  |  327 b   |  18 lines

  1. /*
  2. ** vbcc-Amiga-PowerPC version of system.c
  3. **
  4. ** v0.1 04.10.97 phx
  5. */
  6.  
  7. #include <exec/libraries.h>
  8. #include <utility/TagItem.h>
  9. #include <powerup/gcclib/powerup_protos.h>
  10.  
  11.  
  12. int system(const char *string)
  13. {
  14.   /* there is currently no function in the PowerUp kernel */
  15.   /* to start another PowerPC task ... */
  16.   return (1);
  17. }
  18.